remove line from a href css

52

a {
    text-decoration: none;
}
body {
  color: blue;
}
a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

Comments

Submit
0 Comments